┌────────────────────────────────┐ │ ░░░ ░░▓ ░▓▓ ███ ▓▓░ ▓░░ │ │ ~ M O O N ~ │ └────────────────────────────────┘
prd-web-01.centraldc.gr
LOCATION:
/usr/share/pie/vendor/illuminate/contracts/Redis
☗ ROOT
↻ REFRESH
✎ EDIT FILE
EDITING: Connection.php
<?php namespace Illuminate\Contracts\Redis; use Closure; interface Connection { /** * Subscribe to a set of given channels for messages. * * @param array|string $channels * @param \Closure $callback * @return void */ public function subscribe($channels, Closure $callback); /** * Subscribe to a set of given channels with wildcards. * * @param array|string $channels * @param \Closure $callback * @return void */ public function psubscribe($channels, Closure $callback); /** * Run a command against the Redis database. * * @param string $method * @param array $parameters * @return mixed */ public function command($method, array $parameters = []); }
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 Connection.php
PHP
782 B
2025-03-24 11:47
EDIT
📄 Connector.php
PHP
636 B
2025-03-24 11:47
EDIT
📄 Factory.php
PHP
266 B
2025-03-24 11:47
EDIT
📄 LimiterTimeoutException.php
PHP
121 B
2025-03-24 11:47
EDIT